/tsconfig.json(3,23): error TS5107: Option 'moduleResolution=node10' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.


==== /tsconfig.json (1 errors) ====
    {
    	"compilerOptions": {
    		"moduleResolution": "node",
    		                    ~~~~~~
!!! error TS5107: Option 'moduleResolution=node10' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
    		"traceResolution": true,
    		"moduleSuffixes": ["-ios", "__native", ""]
    	}
    }
    
==== /index.ts (0 errors) ====
    import { ios } from "./foo";
==== /foo-ios.ts (0 errors) ====
    export function ios() {}
==== /foo__native.ts (0 errors) ====
    export function native() {}
==== /foo.ts (0 errors) ====
    export function base() {}
    